home *** CD-ROM | disk | FTP | other *** search
/ W95 Shareware Collection / W95 Collection - Windows 95 Shareware (LCDCAN).iso / win95 / programm / heap32 / heap32.mak < prev    next >
Encoding:
Makefile  |  1994-12-06  |  499 b   |  21 lines

  1. !include <ntwin32.mak>
  2.  
  3. !ifdef DEBUG
  4. COPTS=-c -Od -Gs -G3 -Zi -W3 -DSTRICT -DWIN32 -D_X86_
  5. LOPTS=-subsystem:windows,4.0 -debug:full -debugtype:cv -machine:IX86
  6. !else
  7. COPTS=-c -Ox -Gs -G3 -W3 -DSTRICT -DWIN32 -D_X86_
  8. LOPTS=-subsystem:windows,4.0 -debug:none -opt:noref -machine:IX86
  9. !endif
  10.  
  11. all: heap32.exe
  12.  
  13. heap32.res: heap32.rc
  14.    rc -r heap32.rc
  15.  
  16. heap32.obj: heap32.c
  17.    cl $(COPTS) heap32.c
  18.  
  19. heap32.exe: heap32.res heap32.obj
  20.    link $(LOPTS) heap32.res heap32.obj $(guilibs)
  21.